home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac: Not for Sale / Another.not.for.sale (Australia).iso / fade into you / getting there / Apps / MOO-1.7.6.src / inc / my-stdio.h < prev    next >
Text File  |  1994-11-02  |  2KB  |  81 lines

  1. /******************************************************************************
  2.   Copyright (c) 1992 Xerox Corporation.  All rights reserved.
  3.   Portions of this code were written by Stephen White, aka ghond.
  4.   Use and copying of this software and preparation of derivative works based
  5.   upon this software are permitted.  Any distribution of this software or
  6.   derivative works must comply with all applicable United States export
  7.   control laws.  This software is made available AS IS, and Xerox Corporation
  8.   makes no warranty about the software, its performance or its conformity to
  9.   any specification.  Any person obtaining a copy of this software is requested
  10.   to send their name and post office or electronic mail address to:
  11.     Pavel Curtis
  12.     Xerox PARC
  13.     3333 Coyote Hill Rd.
  14.     Palo Alto, CA 94304
  15.     Pavel@Xerox.Com
  16.  *****************************************************************************/
  17.  
  18. #ifndef My_Stdio_H
  19. #define My_Stdio_H 1
  20.  
  21. #include "config.h"
  22.  
  23. #include <stdio.h>
  24.  
  25. #if NDECL_FCLOSE
  26. extern int    fclose(FILE *);
  27. extern int    fflush(FILE *);
  28. extern int    fgetc(FILE *);
  29. extern int    fprintf(FILE *, const char *, ...);
  30. extern int    fscanf(FILE *, const char *, ...);
  31. extern int    printf(const char *, ...);
  32. extern int    ungetc(int, FILE *);
  33. #endif
  34.  
  35. #if NDECL_PERROR
  36. extern void    perror(const char *);
  37. #endif
  38.  
  39. #if NDECL_REMOVE
  40. extern int    remove(const char *);
  41. extern int    rename(const char *, const char *);
  42. #endif
  43.  
  44. #if NDECL_VFPRINTF
  45. #include "my-stdarg.h"
  46.  
  47. extern int    vfprintf(FILE *, const char *, va_list);
  48. #endif
  49.  
  50. #if !HAVE_REMOVE
  51. #  include "my-unistd.h"
  52. #  define remove(x)    unlink(x)
  53. #endif
  54.  
  55. #if !HAVE_RENAME
  56. #  include "my-unistd.h"
  57. #  define rename(old, new)    (link(old, new) && unlink(old))
  58. #endif
  59.  
  60. #endif /* !My_Stdio_H */
  61.  
  62. /* $Log: my-stdio.h,v $
  63.  * Revision 1.6  1992/10/23  23:03:47  pavel
  64.  * Added copyright notice.
  65.  *
  66.  * Revision 1.5  1992/10/23  19:30:14  pavel
  67.  * Split up the declarations into four equivalence classes instead of just one.
  68.  *
  69.  * Revision 1.4  1992/10/21  03:02:35  pavel
  70.  * Converted to use new automatic configuration system.
  71.  *
  72.  * Revision 1.3  1992/10/17  20:37:59  pavel
  73.  * Added support for systems that lack rename() and/or remove().
  74.  *
  75.  * Revision 1.2  1992/09/03  23:53:10  pavel
  76.  * Added declaration for printf().
  77.  *
  78.  * Revision 1.1  1992/07/20  23:23:12  pavel
  79.  * Initial RCS-controlled version.
  80.  */
  81.